home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / filbx2 / aboutfb.frm (.txt) next >
Encoding:
Visual Basic Form  |  1995-05-08  |  2.1 KB  |  72 lines

  1. VERSION 2.00
  2. Begin Form About 
  3.    Caption         =   "About FILEBOX"
  4.    ClientHeight    =   2940
  5.    ClientLeft      =   1305
  6.    ClientTop       =   1800
  7.    ClientWidth     =   7365
  8.    ControlBox      =   0   'False
  9.    Height          =   3345
  10.    Left            =   1245
  11.    LinkMode        =   1  'Source
  12.    LinkTopic       =   "Form1"
  13.    MaxButton       =   0   'False
  14.    MinButton       =   0   'False
  15.    ScaleHeight     =   2940
  16.    ScaleWidth      =   7365
  17.    Top             =   1455
  18.    Width           =   7485
  19.    Begin PictureBox Picture1 
  20.       BorderStyle     =   0  'None
  21.       Height          =   740
  22.       Left            =   600
  23.       Picture         =   ABOUTFB.FRX:0000
  24.       ScaleHeight     =   735
  25.       ScaleWidth      =   495
  26.       TabIndex        =   0
  27.       Top             =   360
  28.       Width           =   495
  29.    End
  30.    Begin CommandButton Command1 
  31.       Caption         =   "I'm Done"
  32.       Height          =   860
  33.       Left            =   6000
  34.       TabIndex        =   3
  35.       Top             =   240
  36.       Width           =   975
  37.    End
  38.    Begin Label what 
  39.       Height          =   1340
  40.       Left            =   1440
  41.       TabIndex        =   1
  42.       Top             =   1440
  43.       Width           =   5655
  44.    End
  45.    Begin Label who 
  46.       Alignment       =   2  'Center
  47.       Height          =   1100
  48.       Left            =   1680
  49.       TabIndex        =   2
  50.       Top             =   120
  51.       Width           =   3855
  52.    End
  53. Sub Command1_Click ()
  54.    Unload about
  55. End Sub
  56. Sub Form_Load ()
  57.      
  58.      o$ = "by:" + CRLF
  59. o$ = o$ + "Thomas Kiehl" + CRLF
  60. o$ = o$ + "P.O. Box 693" + CRLF
  61. o$ = o$ + "Indian Rocks Beach, FL 34635" + CRLF
  62. o$ = o$ + "Compuserve ID: 73215,427"
  63.      
  64.      A$ = "This is a FILE OPEN dialog box that behaves much" + CRLF
  65. A$ = A$ + "like the open project dialog box in Visual BASIC." + CRLF
  66. A$ = A$ + "It is a conglomeration of ideas, some mine, some others'," + CRLF
  67. A$ = A$ + "some good, some bad.  Most of all, IT WORKS!!!!!!!!!" + CRLF
  68. A$ = A$ + "Just click on OPEN from the FILE pulldown menu."
  69. who.caption = o$
  70. what.caption = A$
  71. End Sub
  72.